;**************************************************************** ;* ;* Template ;* ;**************************************************************** ;---------------------------------------------------- ; Export Symbols ; KEEP THIS!! ;---------------------------------------------------- XDEF Entry ; export 'Entry' symbol ABSENTRY Entry ; for absolute assembly: mark this as application entry point ;---------------------------------------------------- ; Derivative-Specific Definitions ; KEEP THIS!! ;---------------------------------------------------- INCLUDE 'derivative.inc' ;---------------------------------------------------- ; Constants Section ; KEEP THIS!! ;---------------------------------------------------- ROM EQU $0400 DATA EQU $1000 PROG EQU $2000 ;---------------------------------------------------- ; Variable/Data Section ; KEEP THIS!! ;---------------------------------------------------- ORG DATA ;---------------------------------------------------- ; Code Section ; KEEP THIS!! ;---------------------------------------------------- ORG PROG ; Insert your code following the label "Entry" Entry: ; KEEP THIS LABEL!! ; Branch to end of program BRA FINISH ;---------------------------------------------------- ; End program ; KEEP THIS!! ;---------------------------------------------------- FINISH: END